查询保证金赔付保司保费结果(按商户赔付单号)
查询保证金赔付保司保费结果。注:接口频率限制为100次/s
| 请求参数 | 类型 | 描述 |
|---|---|---|
| out_bill_no | string | 商户单号 |
php
$instance->v3->platsolution->ecommerce->mchTransfer->depositInsurancePremiumsCompensationBills->_out_bill_no_->getAsync([
'out_bill_no' => 'plfk2020042013',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$instance->chain('v3/platsolution/ecommerce/mch-transfer/deposit-insurance-premiums-compensation-bills/{out_bill_no}')->getAsync([
'out_bill_no' => 'plfk2020042013',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$instance['v3/platsolution/ecommerce/mch-transfer/deposit-insurance-premiums-compensation-bills/{out_bill_no}']->getAsync([
'out_bill_no' => 'plfk2020042013',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$response = $instance->v3->platsolution->ecommerce->mchTransfer->depositInsurancePremiumsCompensationBills->_out_bill_no_->get([
'out_bill_no' => 'plfk2020042013',
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance->chain('v3/platsolution/ecommerce/mch-transfer/deposit-insurance-premiums-compensation-bills/{out_bill_no}')->get([
'out_bill_no' => 'plfk2020042013',
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance['v3/platsolution/ecommerce/mch-transfer/deposit-insurance-premiums-compensation-bills/{out_bill_no}']->get([
'out_bill_no' => 'plfk2020042013',
]);
print_r(json_decode((string) $response->getBody(), true));| 返回字典 | 类型 | 描述 |
|---|---|---|
| sp_mchid | string | 服务商商户号 |
| sub_mchid | string | 二级商户号 |
| sub_appid | string | 二级商户AppID |
| receiver_detail | object | 转账接收方信息 |
| receiver | object | 转账接收者信息 |
| type | string | 转账接收方类型MERCHANT 枚举值 |
| mch_info | object | 转账接收方商户信息 |
| mchid | string | 商户号 |
| transaction_info | object | 赔付单信息 |
| transaction_id | string | 交易订单号 |
| out_bill_no | string | 商户单号 |
| amount | number | 赔付金额 |
| transfer_remark | string | 赔付原因 |
| bill_id | string | 微信支付转账单号 |
| state | string | 赔付状态ACCEPTED | SUCCESS | CLOSED | WAIT_USER_CONFIRM | CANCELING | CANCELLED 枚举值之一 |
| accept_time | string | 受理时间 |
| success_time | string | 成功时间 |
| close_info | object | 关单信息 |
| close_time | string | 关单时间 |
| close_reason | string | 关单原因 |
| sponsor_mchid | string | 出资商户号 |
参阅 官方文档